home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Snippets / MyGestaltValue / Selector.c < prev    next >
Encoding:
Text File  |  1994-11-11  |  396 b   |  10 lines  |  [TEXT/MMCC]

  1. // This is the code for a Gestalt selector. It returns a value stored inside its own code.
  2. // The value seems to be hard-coded, but in fact it can be modified at runtime by poking into the resource.
  3. // It's rather dirty, but it works.
  4.  
  5. pascal OSErr main (OSType gestaltSelector, long *gestaltResponse)
  6. {
  7.     *gestaltResponse = 0xDEADBEEF;                                // Return a magic cookie
  8.     return noErr;                                            
  9. }
  10.